@charset "UTF-8";

/*reset css*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family:  "Source Han Sans CN","microsoft yahei","Arial", "sans-serif", "microsoft yahei";
    font-size: 14px;
    line-height: 1.42857143;
    color: #0d141c;
    background-color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

/* 表示html文件里带有title属性controls的所有audio标签 */
audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: #333;
}

a:active,
a:hover {
  /* 当元素获得焦点的时候,焦点框为0 */
    outline: 0;
}

b,
strong {
    font-weight: bold;
}


img {
    border: 0;
    vertical-align: middle;
    /* max-width: 100%; */
}

svg:not(:root) {
    overflow: hidden;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    /* 等宽字体 */
    font-family: monospace, monospace;
    /* 垂直测量:1em=16px。 */
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
}
textarea,
input,
button {
    overflow: visible;
    /* 消除终端差异 */
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

button,
select {
  /* 字母大小写 */
  text-transform: none;
}

button[disabled],
html input[disabled] {
  /* 默认光标 */
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Firefox的私有伪元素：消除点击出现虚线 */
    padding: 0;
    border: 0;
    outline: 0；
}

input {
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    appearance: auto;
}
/* 九宫格 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/* fieldset和legend搭配对表单的元素进行分类*/
legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}
/* optgroup对下拉选项进行分类 */
optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 400;
    line-height: 1.1;
    color: inherit;
}

p,
a {
    /* 英文不断句 */
    word-break: break-all;
}

i{
  font-style: normal;
  display: inline-block;
}

.section {
    width: 100%;
    overflow: hidden;
}

.dis-table {
  /* 用display: table代替真正的表格，更加轻量 */
  /* 更加适合等高布局，内容自适应 */
    display: table;
    /* width: 100%; */
    height: 100%;
}

.dis-cell {
    display: table-cell;
    vertical-align: middle;
}



/* 清除浮动 */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}












/* 图片放大镜 */
.msg-box-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
}

.msg-box {
  width: 860px;
  height: 524px;
  padding: 50px;
  background-color: #F3F3F3;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.msg-box .close-box {
  width: 38px;
  height: 38px;
  font-size: 30px;
  color: #666;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.msg-box .close-box:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}



@media (max-width: 991px) {
  .msg-box {
    width: 94%;
    left: 3%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .msg-box {
    height: 450px;
    padding: 15px;
  }

  .msg-box .close-box {
    width: 35px;
    height: 35px;
    right: 0;
    line-height: 20px;
    top: 0;
    text-align: center;
    font-size: 20px;
  }
}

.msg-box .close-box {
  border: solid 3px #7f7f7f;
  background: url(../images/msg-closes.png)
}

@media(max-width:676px) {
  .vedio-con li {
    width: 50%;
  }

  .vedio-txt {
    font-size: 14px;
    line-height: 3px;
  }

  .msg-box {
    left: 10%;
    width: 300px;
    padding: 20px;
    height: 360px;
  }

  #close-box {
    width: 24px;
    height: 24px;
  }
  .msg-box .close-box{    background-size: 100%;}
}

@media (max-width: 320px) {
  .msg-box {
    left: 5%;
  }
}

@media (max-width: 360px) {}


/* 分享 */
#bsWXBox{height: 257px!important;width: 232px!important;}


.bshare-custom .bshare-linkedin,
.bshare-custom .bshare-twitter{background: none;}
.bshare-custom .share-facebook,
.bshare-custom .share-weixin,
.bshare-custom .share-youku,
.bshare-custom .share-tengxun,
.bshare-custom .share-douyin,
.bshare-custom .share-linkedin{padding-left: 27px;height: 26px;}

.bshare-custom .share-weixin{padding-left: 30px;}
.bshare-custom .share-youku{padding-left: 40px;}


.bshare-custom .share-weixin{background: url(../images/share11.png)no-repeat!important;}
.bshare-custom .share-douyin{background: url(../images/share22.png)no-repeat!important;}
.bshare-custom .share-youku{background: url(../images/share33.png)no-repeat!important;}
.bshare-custom .share-facebook{background: url(../images/share44.png)no-repeat!important;}
.bshare-custom .share-linkedin{background: url(../images/share55.png)no-repeat!important;}
.bshare-custom .share-tengxun{background: url(../images/share66.png)no-repeat!important;}

.bshare-custom .share-youku,
.bshare-custom .share-tengxun,
.bshare-custom .share-douyin,
.bshare-custom .share-facebook,
.bshare-custom .share-weixin,
.bshare-custom .share-linkedin
{display: block;float: right;margin-left: 16px;transition: all 0.5s;}

.bshare-custom a:hover{opacity: 1!important;background-position-y: -25px!important;}


@media (max-width:991px) {
.bshare-custom .share-youku, .bshare-custom .share-tengxun, .bshare-custom .share-douyin, .bshare-custom .share-facebook, .bshare-custom .share-weixin, .bshare-custom .share-linkedin{
float: left;}
.bshare-custom .share-youku, .bshare-custom .share-tengxun, .bshare-custom .share-douyin, .bshare-custom .share-facebook, .bshare-custom .share-weixin, .bshare-custom .share-linkedin{margin-left: 0;margin-right: 16px;}
}
@media (max-width:767px) {
.bshare-custom .share-youku, .bshare-custom .share-tengxun, .bshare-custom .share-douyin, .bshare-custom .share-linkedin
{margin-right: 12px;margin-left: 0;}
.bshare-custom .share-youku, .bshare-custom .share-tengxun, .bshare-custom .share-douyin, .bshare-custom .share-facebook, .bshare-custom .share-weixin, .bshare-custom .share-linkedin{
  float: left;
  margin-left: 0;
}
}

/* ==============anchor============= */
/* .anchor {
}
.anchor li {
  display: inline-block;
  vertical-align: middle;
  float: left;
}
.anchor li a {
}
.anchor li.on a, .anchor li a:hover{color: var(--theme-color);border-color: var(--theme-color);}
 */


/* 分页 */
.lpage {text-align: center;}
.lpage-con{display: inline-block;}
/*.lpage a{font-size: 18px;line-height: 24px; color: #333;font-family: "DIN";transition: ease .5s;padding: 7px 14px;display: inline-block;
       margin: 0 5px;border: 1px solid #333;}*/
.lpage a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  transition: all .5s;
  display: inline-block;
  border-radius: 50%;
  color: #666;
  margin: 0 12px ;
  font-size: 20px;font-family: 'DIN';
      vertical-align: middle;
}
.lpage a.on,
.lpage a:hover {color: var(--theme-color);}

.lpage a.lpage-prev,.lpage a.lpage-next{border-color: transparent;transition: ease .5s;}
.lpage a.lpage-prev:hover,.lpage a.lpage-next:hover{background-color: transparent;}
.lpage a.lpage-prev:hover i, .lpage a.lpage-next:hover i {
background-color: var(--theme-color);
color: #fff;
}

.lpage a.zz{display:inline-block;background: url(../images/sanjiao2.png)no-repeat center;border: 1px solid #ddd;}
.lpage a.zz.next{transform: rotate(180deg);}
.lpage a.zz:hover{transform: scale(1.15);}
.lpage a.zz.next:hover{transform: rotate(180deg) scale(1.15);}

@media (max-width:1459px) {
  }
@media (max-width:991px) {
    }
@media (max-width:767px) {
.lpage a{margin: 0 2px;}
}









/* 常见按钮 */
/* .more{
  width: 158px;
  height: 48px;
  margin-top: 54px;
  background: transparent;
  text-decoration: none;
}
.more a{display: block;position: relative;}
.more a:before{content: '';display: block;width: 158px;height: 48px; position: absolute;left: 0;top: 0;
  border-top: 1.5px solid #fff;border-left: 1.5px solid #fff; transform: skewX(-20deg)}
.more a:after{content: '';display: block;width: 160px;height: 48px; position: absolute;left: 8px;top: 1px;
  border-bottom: 1.5px solid #fff;border-right: 1.5px solid #fff;transform: skewX(-20deg)}
.more a span{display: block;text-align: center;line-height: 48px;} */


/* 常见字号 */
.tit-size48{font-size: 48px;}
.tit-size46{font-size: 46px;}
.tit-size42{font-size: 42px;}
.tit-size40{font-size: 40px;}
.h3-size38{font-size: 38px;}
.h3-size36{font-size: 36px;}
.h3-size34{font-size: 34px;}
.h3-size32{font-size: 32px;}
.h3-size30{font-size: 30px;}
.h3-size28{font-size: 28px;}
.h3-size26{font-size: 26px;}
.h3-size24{font-size: 24px;}
.h3-size22{font-size: 22px;}
.h3-size20{font-size: 20px;}
.p-size18{font-size: 18px;}
.p-size16{font-size: 16px;}
.p-size14{font-size: 14px;}
@media  (max-width:1681px) {
  .tit-size48{font-size: 40px;}
  .tit-size42{font-size: 38px;}
  .tit-size40{font-size: 36px;}
  .h3-size38{font-size: 34px;}
  .h3-size36{font-size: 32px;}
  .h3-size34{font-size: 30px;}
  .h3-size32{font-size: 28px;}
  .h3-size30{font-size: 26px;}
  .h3-size28{font-size: 24px;}
  .h3-size26{font-size: 24px;}
  .h3-size24{font-size: 22px;}
  .h3-size22{font-size:20px;}
  .h3-size20{font-size: 18px;}
  .p-size18{font-size: 16px;}
}
@media  (max-width:1459px) {
  .tit-size42{font-size: 36px;}
  .tit-size40{font-size: 34px;}
  .h3-size38{font-size: 28px;}
  .h3-size36{font-size: 28px;}
  .h3-size34{font-size: 26px;}
  .h3-size32{font-size: 26px;}
  .h3-size30{font-size: 26px;}
  .h3-size28{font-size: 24px;}
  .h3-size26{font-size: 20px;}
  .h3-size24{font-size: 18px;}
  .h3-size22{font-size:18px;}
  .h3-size20{font-size: 16px;}
  .p-size18{font-size: 16px;}
  /* .p-size16{font-size: 15px;} */
}
@media  (max-width:1259px) {
  .tit-size42{font-size: 34px;}
  .tit-size40{font-size: 32px;}
  .h3-size38{font-size: 26px;}
  .h3-size36{font-size: 26px;}
  .h3-size34{font-size: 24px;}
  .h3-size32{font-size: 24px;}
  .h3-size30{font-size: 24px;}
  .h3-size28{font-size: 22px;}
  .h3-size26{font-size: 20px;}
  .h3-size24{font-size: 18px;}
  .h3-size22{font-size:18px;}
  .h3-size20{font-size: 16px;}
  .p-size18{font-size: 16px;}
  .p-size16{font-size: 14px;}
}
@media  (max-width:991px) {
  .tit-size42{font-size: 28px;}
  .tit-size40{font-size: 28px;}
  .h3-size38{font-size: 24px;}
  .h3-size36{font-size: 24px;}
  .h3-size34{font-size: 22px;}
  .h3-size32{font-size: 22px;}
  .h3-size30{font-size: 22px;}
  .h3-size28{font-size: 22px;}
  .h3-size26{font-size: 20px;}
  .h3-size24{font-size: 18px;}
  .h3-size22{font-size:18px;}
  .h3-size20{font-size: 16px;}
  .p-size18{font-size: 14px;}
}
@media  (max-width:767px) {
  .tit-size42{font-size: 22px;}
  .tit-size40{font-size: 22px;}
  .h3-size38{font-size: 20px;}
  .h3-size36{font-size: 20px;}
  .h3-size34{font-size: 20px;}
  .h3-size32{font-size: 20px;}
  .h3-size30{font-size: 20px;}
  .h3-size28{font-size: 18px;}
  .h3-size26{font-size: 17px;}
  .h3-size24{font-size: 16px;}
  .p-size22{font-size:16px;}
  .p-size18{font-size: 14px;}
}
/* 常见字体 */

/* 英文 */

@font-face {
  font-family: "DIN-std";
  src: url("../fonts/DINMITTELSCHRIFTSTD.eot");
  src: url("../fonts/DINMITTELSCHRIFTSTD.eot?#iefix") format("embedded-opentype"),
  url("../fonts/DINMITTELSCHRIFTSTD.woff") format("woff"), 
  url("../fonts/DINMITTELSCHRIFTSTD.ttf") format("truetype"), 
  url("../fonts/DINMITTELSCHRIFTSTD.svg") format("svg")
}
.dinStd{font-family: 'DIN-std';font-size: 48px;}

@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Medium.eot");
  src: url("../fonts/DINPro-Medium.eot?#iefix") format("embedded-opentype"),
  url("../fonts/DINPro-Medium.woff") format("woff"), 
  url("../fonts/DINPro-Medium.ttf") format("truetype"), 
  url("../fonts/DINPro-Medium.svg") format("svg")
}
@font-face {
  font-family: "DINProR";
  src: url("../fonts/DINPRO-REGULAR.eot");
  src: url("../fonts/DINPRO-REGULAR.eot?#iefix") format("embedded-opentype"),
  url("../fonts/DINPRO-REGULAR.woff") format("woff"), 
  url("../fonts/DINPRO-REGULAR.ttf") format("truetype"), 
  url("../fonts/DINPRO-REGULAR.svg") format("svg")
}
@font-face {
  font-family: "akz-l";
  src: url("../fonts/AKZIDENZGROTESK-LIGHT_0.eot");
  src: url("../fonts/AKZIDENZGROTESK-LIGHT_0.eot?#iefix") format("embedded-opentype"),
  url("../fonts/AKZIDENZGROTESK-LIGHT_0.woff") format("woff"), 
  url("../fonts/AKZIDENZGROTESK-LIGHT_0.ttf") format("truetype"), 
  url("../fonts/AKZIDENZGROTESK-LIGHT_0.svg") format("svg")
}




/* 常见字体引用 */




/* 常见动画 */
.landIn { display: flex; justify-content: center; flex-wrap: wrap;}
.kongs {
  animation: landIn 0.8s ease-out both;
}
@keyframes landIn {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes landIn {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





@keyframes jump{
  0%{  
    top:0px;  
    color:#333;  
  }  
  50%{  
      top:-10px;  
      color:#e94609;   
  }  
  100%{  
      top:0;  
      color:#e94609;  
  }  
}
@-webkit-keyframes jump  {  
  0%{  
      top:0px;  
      color:#333;  
  }  
  50%{  
      top:-10px;  
      color:#e94609;   
  }  
  100%{  
      top:0;  
      color:#e94609;  
  }  
}


@-webkit-keyframes dotted  {  
  0%{  
    width: 10px;height: 10px;
    top: 10px;left: 0px;opacity: 0.6;
  }  
  20%{
    width: 14px;
    height: 14px;
    top: 8px;
    left: -2px;
  }
  50%{  
    width: 16px;height: 16px;
    top: 7px;left: -3px;opacity: 0.3;
  }  
  100%{  
      top: 5px;
      left: -5px;
      opacity: 0;
      width: 20px;
    height: 20px;
  }  
}

@keyframes fangda{
  0%{transform: scale(1);}
  100%{transform: scale(1.05);}
}




/* 换行效果 */
.p-style{display: block;}

/* 多行省略 */
.text-over{overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;}

  /* 滚动条 */
.scrollbar {
  overflow-y: auto;
}


.scrollbar::-webkit-scrollbar {
  width: 3px;
  background-color: #dcdbdb;
}
.down .ban-nav.left::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 10px;
}

.down .ban-nav.left::-webkit-scrollbar{
 width: 3px;
 height: 3px;
 background-color: #dcdbdb;
}



.left{float: left;}
.right{float: right;}


/* ================================== */

/* ===== 以上 reset Css ===== */ 

/* ===== 共用 ===== */
.fl{ float:left;}
.fr{ float:right;}
.pr{position: relative;}
.w1200{ width: 1200px; margin:0 auto;}
.clearRmp{margin-right:0;padding-right:0;}
.clearLmp{margin-left:0;padding-left:0;}
.text_center{text-align: center;}
.none{display: none;}

/* img{max-width: 100%;} */

@font-face {
    font-family: 'deckerregular';
    src: url('../fonts/decker-webfont.woff2') format('woff2'),
         url('../fonts/decker-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
